home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000064_news@columbia.edu _Thu Aug 26 18:19:11 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id SAA01195
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 26 Aug 1999 18:19:11 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA16237
  7.     for kermit.misc@watsun.cc.columbia.edu; Thu, 26 Aug 1999 17:59:26 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: C-Kermit hangs.
  11. Date: 26 Aug 1999 21:59:25 GMT
  12. Organization: Columbia University
  13. Message-ID: <7q4dbt$fra$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <37C5B4C8.49147424@ix.netcom.com>,
  17. yisroel  <yisroel@ix.netcom.com> wrote:
  18. : I'm running the newest beta and older version of C-Kermit for Red Hat
  19. : Linux 6.0 and here is the problem I have:
  20. : I'm doing a system call from a Perl script to run a kermit script. At
  21. : some point of Kermit script execution kermit process or sz call would
  22. : hang.  As soon as I try to strace my kermit process it would come alive.
  23. The best technique is to decompose your procedure into its parts to
  24. isolate the part that is giving you trouble.  Begin by removing Perl
  25. and your Kermit script from the picture.
  26.  
  27. Can you make a connection with C-Kermit by hand and then transfer files 
  28. over it with sz?  If it doesn't work by hand, it won't work in your
  29. script.  Note that using sz as an external protocol over a connection
  30. you have made with Kermit will work only if you have a version of sz
  31. that uses stdio for file transfer.  Versions of sz produced since
  32. about 1988 do NOT use stdio for this, and therefore C-Kermit can not
  33. redirect them over the communications connection.  For further info,
  34. see item 38 of the Kermit FAQ:
  35.  
  36.   http://www.columbia.edu/kermit/faq.html
  37.  
  38. and/or read Chapter 14 of "Using C-Kermit" about external protocols.
  39.  
  40. - Frank